release: Release v0.0.7#254
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
React Doctor found 7 files changed in this pull request, but none matched the files covered by its enabled checks. Scope: 7 files changed on Generated by React Doctor. Questions? Contact founders@million.dev. |
WalkthroughUpdated the ChangesDependency Update
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@go.mod`:
- Line 13: Confirm provenance of the github.com/compozy/agh-web-assets v0.0.33
change by regenerating the module properly rather than leaving a manual edit:
fetch the module version so go.mod and go.sum are produced by the toolchain
(ensure the dependency line "github.com/compozy/agh-web-assets v0.0.33" in
go.mod and corresponding hashes in go.sum are the result of a module fetch),
then commit the regenerated go.mod and go.sum; if the change was intentionally
manual, document in the PR description which command or workflow produced the
update and include that note in the commit message so reviewers can verify
provenance.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: fd191bc5-a24c-4c8d-babf-dc681de4482b
⛔ Files ignored due to path filters (6)
CHANGELOG.mdis excluded by!**/*.mdRELEASE_BODY.mdis excluded by!**/*.mdRELEASE_NOTES.mdis excluded by!**/*.mdgo.sumis excluded by!**/*.sum,!**/*.sumpackage.jsonis excluded by!**/*.jsonpackages/site/content/blog/changelog/v0.0.7.mdxis excluded by!**/*.mdx
📒 Files selected for processing (1)
go.mod
| github.com/charmbracelet/bubbletea v1.3.10 | ||
| github.com/coder/acp-go-sdk v0.12.2 | ||
| github.com/compozy/agh-web-assets v0.0.31 | ||
| github.com/compozy/agh-web-assets v0.0.33 |
There was a problem hiding this comment.
❓ Verification inconclusive
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "=== go.mod (with line numbers around line 13) ==="
nl -ba go.mod | sed -n '1,40p'
echo
echo "=== go.sum entries for compozy/agh-web-assets ==="
rg -n "github\.com/compozy/agh-web-assets" go.sum || true
echo
echo "=== git diff for go.mod and go.sum (if git metadata exists) ==="
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
git diff -- go.mod go.sum | sed -n '1,200p'
else
echo "No git repository metadata available."
fi
echo
echo "=== Current module versions for compozy/agh-web-assets from go.mod parsing ==="
node -e "const fs=require('fs');const txt=fs.readFileSync('go.mod','utf8').split(/\\r?\\n/);for(const line of txt){const m=line.match(/^github\\.com\\/compozy\\/agh-web-assets\\s+v\\S+/); if(m) console.log(m[0]);}"Repository: compozy/agh
Length of output: 166
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "=== go.mod (with line numbers around line 13) ==="
nl -ba go.mod | sed -n '1,40p'
echo
echo "=== go.sum entries for compozy/agh-web-assets ==="
rg -n "github\.com/compozy/agh-web-assets" go.sum || true
echo
echo "=== git diff for go.mod and go.sum (if git metadata exists) ==="
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
git diff -- go.mod go.sum | sed -n '1,200p'
else
echo "No git repository metadata available."
fi
echo
echo "=== Current module versions for compozy/agh-web-assets from go.mod parsing ==="
node -e "const fs=require('fs');const txt=fs.readFileSync('go.mod','utf8').split(/\\r?\\n/);for(const line of txt){const m=line.match(/^github\\.com\\/compozy\\/agh-web-assets\\s+v\\S+/); if(m) console.log(m[0]);}"Repository: compozy/agh
Length of output: 166
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "=== go.mod (lines 1-30) ==="
sed -n '1,30p' go.mod || true
echo
echo "=== go.sum entries for compozy/agh-web-assets ==="
if [ -f go.sum ]; then
rg -n "github\.com/compozy/agh-web-assets" go.sum || true
else
echo "go.sum not found."
fi
echo
echo "=== git diff for go.mod and go.sum (if git metadata exists) ==="
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
git diff -- go.mod go.sum | sed -n '1,200p' || true
else
echo "No git repository metadata available."
fi
echo
echo "=== Current module versions for compozy/agh-web-assets from go.mod parsing ==="
node -e "const fs=require('fs');const txt=fs.readFileSync('go.mod','utf8').split(/\r?\n/);for(const line of txt){const m=line.match(/^github\\.com\\/compozy\\/agh-web-assets\\s+v\\S+/); if(m) console.log(m[0]);}"Repository: compozy/agh
Length of output: 1569
Confirm go.mod update provenance for github.com/compozy/agh-web-assets v0.0.33
go.mod now requires github.com/compozy/agh-web-assets v0.0.33, and go.sum contains matching v0.0.33 hashes, but the repo state provided doesn’t show whether the change was produced by go get github.com/compozy/agh-web-assets@v0.0.33 (with metadata refresh) versus a manual edit to go.mod.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@go.mod` at line 13, Confirm provenance of the
github.com/compozy/agh-web-assets v0.0.33 change by regenerating the module
properly rather than leaving a manual edit: fetch the module version so go.mod
and go.sum are produced by the toolchain (ensure the dependency line
"github.com/compozy/agh-web-assets v0.0.33" in go.mod and corresponding hashes
in go.sum are the result of a module fetch), then commit the regenerated go.mod
and go.sum; if the change was intentionally manual, document in the PR
description which command or workflow produced the update and include that note
in the commit message so reviewers can verify provenance.
✅ Dry-Run Completed Successfully📊 Build Summary
📦 Built ArtifactsNot available. This is an automated comment from the release dry-run check. |
Release v0.0.7
This PR prepares the release of version v0.0.7.
Changelog
0.0.7 - 2026-06-04
♻️ Refactoring
🐛 Bug Fixes
Summary by CodeRabbit